home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / 68hc11 / smallc11.arc / CC3.C < prev    next >
Text File  |  1988-05-27  |  683b  |  38 lines

  1. /*
  2. ** Small-C Compiler Version 2.0
  3. **
  4. ** Copyright 1982 J. E. Hendrix
  5. **
  6. ** Part 3
  7. */
  8. #include    <stdio.h>
  9. #include    "ccdef.c"
  10.  
  11.  
  12. /*
  13. ** external references in part 1
  14. */
  15. extern char
  16.   stage[STAGESIZE],
  17.   litq[LITABSZ],
  18.  *glbptr, *lptr,  ssname[NAMESIZE],  quote[2], *stagenext;
  19.  
  20. extern int
  21.   ch,  csp,  litlab,  litptr,  nch,  op[16],  op2[16],
  22.   (*oper)(),  opindex,    opsize;
  23.  
  24. extern int
  25.     xor(), and(), eq(),
  26.     ne(), le(), ge(), lt(), gt(),
  27.     asr(), asl(), add(), sub(),
  28.     mult(), div(), mod(), or(),
  29.     ule(), uge(), inc(), dec(),
  30.     ult(), ugt(),
  31.     le0(), lt0(),
  32.     gt0(), ge0(), ult0(),
  33.     eq0(), ne0();
  34.  
  35. #include    "cc31.c"
  36. #include    "cc32.c"
  37. #include    "cc33.c"
  38.